home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / lib / emacs / 19.22 / lisp / compile.el < prev    next >
Lisp/Scheme  |  1993-09-21  |  44KB  |  1,154 lines

  1. ;;; compile.el --- run compiler as inferior of Emacs, parse error messages.
  2.  
  3. ;; Copyright (C) 1985, 86, 87, 93 Free Software Foundation, Inc.
  4.  
  5. ;; Author: Roland McGrath <roland@prep.ai.mit.edu>
  6. ;; Maintainer: FSF
  7. ;; Keywords: tools, processes
  8.  
  9. ;; This file is part of GNU Emacs.
  10.  
  11. ;; GNU Emacs is free software; you can redistribute it and/or modify
  12. ;; it under the terms of the GNU General Public License as published by
  13. ;; the Free Software Foundation; either version 2, or (at your option)
  14. ;; any later version.
  15.  
  16. ;; GNU Emacs is distributed in the hope that it will be useful,
  17. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19. ;; GNU General Public License for more details.
  20.  
  21. ;; You should have received a copy of the GNU General Public License
  22. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  23. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  24.  
  25. ;;; Commentary:
  26.  
  27. ;; This package provides the compile and grep facilities documented in
  28. ;; the Emacs user's manual.
  29.  
  30. ;;; Code:
  31.  
  32. ;;;###autoload
  33. (defvar compilation-mode-hook nil
  34.   "*List of hook functions run by `compilation-mode' (see `run-hooks').")
  35.  
  36. ;;;###autoload
  37. (defconst compilation-window-height nil
  38.   "*Number of lines in a compilation window.  If nil, use Emacs default.")
  39.  
  40. (defvar compilation-error-list nil
  41.   "List of error message descriptors for visiting erring functions.
  42. Each error descriptor is a cons (or nil).  Its car is a marker pointing to
  43. an error message.  If its cdr is a marker, it points to the text of the
  44. line the message is about.  If its cdr is a cons, that cons's car is a cons
  45. \(DIRECTORY . FILE\), specifying the file the message is about, and its cdr
  46. is the number of the line the message is about.  Or its cdr may be nil if
  47. that error is not interesting.
  48.  
  49. The value may be t instead of a list; this means that the buffer of
  50. error messages should be reparsed the next time the list of errors is wanted.
  51.  
  52. Some other commands (like `diff') use this list to control the error
  53. message tracking facilites; if you change its structure, you should make
  54. sure you also change those packages.  Perhaps it is better not to change
  55. it at all.")
  56.  
  57. (defvar compilation-old-error-list nil
  58.   "Value of `compilation-error-list' after errors were parsed.")
  59.  
  60. (defvar compilation-parse-errors-function 'compilation-parse-errors 
  61.   "Function to call to parse error messages from a compilation.
  62. It takes args LIMIT-SEARCH and FIND-AT-LEAST.
  63. If LIMIT-SEARCH is non-nil, don't bother parsing past that location.
  64. If FIND-AT-LEAST is non-nil, don't bother parsing after finding that 
  65.  many new erros.
  66. It should read in the source files which have errors and set
  67. `compilation-error-list' to a list with an element for each error message
  68. found.  See that variable for more info.")
  69.  
  70. ;;;###autoload
  71. (defvar compilation-buffer-name-function nil
  72.   "Function to compute the name of a compilation buffer.
  73. The function receives one argument, the name of the major mode of the
  74. compilation buffer.  It should return a string.
  75. nil means compute the name with `(concat \"*\" (downcase major-mode) \"*\")'.")
  76.  
  77. ;;;###autoload
  78. (defvar compilation-finish-function nil
  79.   "*Function to call when a compilation process finishes.
  80. It is called with two arguments: the compilation buffer, and a string
  81. describing how the process finished.")
  82.  
  83. (defvar compilation-last-buffer nil
  84.   "The most recent compilation buffer.
  85. A buffer becomes most recent when its compilation is started
  86. or when it is used with \\[next-error] or \\[compile-goto-error].")
  87.  
  88. (defvar compilation-in-progress nil
  89.   "List of compilation processes now running.")
  90. (or (assq 'compilation-in-progress minor-mode-alist)
  91.     (setq minor-mode-alist (cons '(compilation-in-progress " Compiling")
  92.                  minor-mode-alist)))
  93.  
  94. (defvar compilation-parsing-end nil
  95.   "Position of end of buffer when last error messages were parsed.")
  96.  
  97. (defvar compilation-error-message "No more errors"
  98.   "Message to print when no more matches are found.")
  99.  
  100. (defvar compilation-num-errors-found)
  101.  
  102. (defvar compilation-error-regexp-alist
  103.   '(
  104.     ;; NOTE!  This first one is repeated in grep-regexp-alist, below.
  105.  
  106.     ;; 4.3BSD grep, cc, lint pass 1:
  107.     ;;     /usr/src/foo/foo.c(8): warning: w may be used before set
  108.     ;; or GNU utilities:
  109.     ;;     foo.c:8: error message
  110.     ;; or HP-UX 7.0 fc:
  111.     ;;     foo.f          :16    some horrible error message
  112.     ;;
  113.     ;; We'll insist that the number be followed by a colon or closing
  114.     ;; paren, because otherwise this matches just about anything
  115.     ;; containing a number with spaces around it.
  116.     ("\n\\([^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\)[:) \t]" 1 2)
  117.  
  118.     ;; 4.3BSD lint pass 2
  119.     ;;     strcmp: variable # of args. llib-lc(359)  ::  /usr/src/foo/foo.c(8)
  120.     ("[ \t:]\\([^:( \t\n]+\\)[:(](+[ \t]*\\([0-9]+\\))[:) \t]*$" 1 2)
  121.  
  122.     ;; 4.3BSD lint pass 3
  123.     ;;     bloofle defined( /users/wolfgang/foo.c(4) ), but never used
  124.     ;; This used to be
  125.     ;; ("[ \t(]+\\([^:( \t\n]+\\)[:( \t]+\\([0-9]+\\)[:) \t]+" 1 2)
  126.     ;; which is regexp Impressionism - it matches almost anything!
  127.     ("([ \t]*\\([^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\))" 1 2)
  128.  
  129.     ;; Ultrix 3.0 f77:
  130.     ;;  Error on line 3 of t.f: Execution error unclassifiable statement    
  131.     ;; Unknown who does this:
  132.     ;;  Line 45 of "foo.c": bloofel undefined
  133.     ("\n\\(Error on \\)?[Ll]ine[ \t]+\\([0-9]+\\)[ \t]+\
  134. of[ \t]+\"?\\([^\"\n]+\\)\"?:" 3 2)
  135.  
  136.     ;; Apollo cc, 4.3BSD fc:
  137.     ;;    "foo.f", line 3: Error: syntax error near end of statement
  138.     ;; IBM RS6000:
  139.     ;;  "vvouch.c", line 19.5: 1506-046 (S) Syntax error.
  140.     ;; Unknown compiler:
  141.     ;;  File "foobar.ml", lines 5-8, characters 20-155: blah blah
  142.     ("\"\\([^,\" \n\t]+\\)\", lines? \\([0-9]+\\)[:.,-]" 1 2)
  143.  
  144.     ;; MIPS RISC CC - the one distributed with Ultrix:
  145.     ;;    ccom: Error: foo.c, line 2: syntax error
  146.     ("rror: \\([^,\" \n\t]+\\), line \\([0-9]+\\):" 1 2)
  147.  
  148.     ;; IBM AIX PS/2 C version 1.1:
  149.     ;;    ****** Error number 140 in line 8 of file errors.c ******
  150.     ("in line \\([0-9]+\\) of file \\([^ \n]+[^. \n]\\)\\.? " 2 1)
  151.     ;; IBM AIX lint is too painful to do right this way.  File name
  152.     ;; prefixes entire sections rather than being on each line.
  153.  
  154.     )
  155.   "Alist that specifies how to match errors in compiler output.
  156. Each element has the form (REGEXP FILE-IDX LINE-IDX).
  157. If REGEXP matches, the FILE-IDX'th subexpression gives the file
  158. name, and the LINE-IDX'th subexpression gives the line number.")
  159.  
  160. (defvar grep-regexp-alist
  161.   '(("^\\([^:( \t\n]+\\)[:( \t]+\\([0-9]+\\)[:) \t]" 1 2))
  162.   "Regexp used to match grep hits.  See `compilation-error-regexp-alist'.")
  163.  
  164. ;;;###autoload
  165. (defvar compilation-search-path '(nil)
  166.   "*List of directories to search for source files named in error messages.
  167. Elements should be directory names, not file names of directories.
  168. nil as an element means to try the default directory.")
  169.  
  170. (defvar compile-command "make -k "
  171.   "Last shell command used to do a compilation; default for next compilation.
  172.  
  173. Sometimes it is useful for files to supply local values for this variable.
  174. You might also use mode hooks to specify it in certain modes, like this:
  175.  
  176.     (setq c-mode-hook
  177.       '(lambda () (or (file-exists-p \"makefile\") (file-exists-p \"Makefile\")
  178.               (progn (make-local-variable 'compile-command)
  179.                  (setq compile-command
  180.                     (concat \"make -k \"
  181.                         buffer-file-name))))))")
  182.  
  183. (defconst compilation-enter-directory-regexp
  184.   ": Entering directory `\\(.*\\)'$"
  185.   "Regular expression matching lines that indicate a new current directory.
  186. This must contain one \\(, \\) pair around the directory name.
  187.  
  188. The default value matches lines printed by the `-w' option of GNU Make.")
  189.  
  190. (defconst compilation-leave-directory-regexp
  191.   ": Leaving directory `\\(.*\\)'$"
  192.   "Regular expression matching lines that indicate restoring current directory.
  193. This may contain one \\(, \\) pair around the name of the directory
  194. being moved from.  If it does not, the last directory entered \(by a
  195. line matching `compilation-enter-directory-regexp'\) is assumed.
  196.  
  197. The default value matches lines printed by the `-w' option of GNU Make.")
  198.  
  199. (defvar compilation-directory-stack nil
  200.   "Stack of previous directories for `compilation-leave-directory-regexp'.
  201. The head element is the directory the compilation was started in.")
  202.  
  203. ;; History of compile commands.
  204. (defvar compile-history nil)
  205. ;; History of grep commands.
  206. (defvar grep-history nil)
  207.  
  208. ;;;###autoload
  209. (defun compile (command)
  210.   "Compile the program including the current buffer.  Default: run `make'.
  211. Runs COMMAND, a shell command, in a separate process asynchronously
  212. with output going to the buffer `*compilation*'.
  213.  
  214. You can then use the command \\[next-error] to find the next error message
  215. and move to the source code that caused it.
  216.  
  217. To run more than one compilation at once, start one and rename the
  218. \`*compilation*' buffer to some other name with \\[rename-buffer].
  219. Then start the next one.
  220.  
  221. The name used for the buffer is actually whatever is returned by
  222. the function in `compilation-buffer-name-function', so you can set that
  223. to a function that generates a unique name."
  224.   (interactive (list (read-from-minibuffer "Compile command: "
  225.                        compile-command nil nil
  226.                        '(compile-history . 1))))
  227.   (setq compile-command command)
  228.   (save-some-buffers nil nil)
  229.   (compile-internal compile-command "No more errors"))
  230.  
  231. ;;;###autoload
  232. (defun grep (command-args)
  233.   "Run grep, with user-specified args, and collect output in a buffer.
  234. While grep runs asynchronously, you can use the \\[next-error] command
  235. to find the text that grep hits refer to.
  236.  
  237. This command uses a special history list for its arguments, so you can
  238. easily repeat a grep command."
  239.   (interactive
  240.    (list (read-from-minibuffer "Run grep (like this): "
  241.                    "grep -n " nil nil 'grep-history)))
  242.   (compile-internal (concat command-args " /dev/null")
  243.             "No more grep hits" "grep"
  244.             ;; Give it a simpler regexp to match.
  245.             nil grep-regexp-alist))
  246.  
  247. (defun compile-internal (command error-message
  248.                  &optional name-of-mode parser regexp-alist
  249.                  name-function)
  250.   "Run compilation command COMMAND (low level interface).
  251. ERROR-MESSAGE is a string to print if the user asks to see another error
  252. and there are no more errors.  Third argument NAME-OF-MODE is the name
  253. to display as the major mode in the compilation buffer.
  254.  
  255. Fourth arg PARSER is the error parser function (nil means the default).  Fifth
  256. arg REGEXP-ALIST is the error message regexp alist to use (nil means the
  257. default).  Sixth arg NAME-FUNCTION is a function called to name the buffer (nil
  258. means the default).  The defaults for these variables are the global values of
  259. \`compilation-parse-errors-function', `compilation-error-regexp-alist', and
  260. \`compilation-buffer-name-function', respectively.
  261.  
  262. Returns the compilation buffer created."
  263.   (let (outbuf)
  264.     (save-excursion
  265.       (or name-of-mode
  266.       (setq name-of-mode "Compilation"))
  267.       (setq outbuf
  268.         (get-buffer-create
  269.          (funcall (or name-function compilation-buffer-name-function
  270.               (function (lambda (mode)
  271.                       (concat "*" (downcase mode) "*"))))
  272.               name-of-mode)))
  273.       (set-buffer outbuf)
  274.       (let ((comp-proc (get-buffer-process (current-buffer))))
  275.     (if comp-proc
  276.         (if (or (not (eq (process-status comp-proc) 'run))
  277.             (yes-or-no-p
  278.              (format "A %s process is running; kill it? "
  279.                  name-of-mode)))
  280.         (condition-case ()
  281.             (progn
  282.               (interrupt-process comp-proc)
  283.               (sit-for 1)
  284.               (delete-process comp-proc))
  285.           (error nil))
  286.           (error "Cannot have two processes in `%s' at once"
  287.              (buffer-name))
  288.           )))
  289.       ;; In case the compilation buffer is current, make sure we get the global
  290.       ;; values of compilation-error-regexp-alist, etc.
  291.       (kill-all-local-variables))
  292.     (let ((regexp-alist (or regexp-alist compilation-error-regexp-alist))
  293.       (parser (or parser compilation-parse-errors-function))
  294.       (thisdir default-directory)
  295.       outwin) 
  296.       (save-excursion
  297.     ;; Clear out the compilation buffer and make it writable.
  298.     ;; Change its default-directory to the directory where the compilation
  299.     ;; will happen, and insert a `cd' command to indicate this.
  300.     (set-buffer outbuf)
  301.     (setq buffer-read-only nil)
  302.     (erase-buffer)
  303.     (setq default-directory thisdir)
  304.     (insert "cd " thisdir "\n" command "\n")
  305.     (set-buffer-modified-p nil))
  306.       ;; If we're already in the compilation buffer, go to the end
  307.       ;; of the buffer, so point will track the compilation output.
  308.       (if (eq outbuf (current-buffer))
  309.       (goto-char (point-max)))
  310.       ;; Pop up the compilation buffer.
  311.       (setq outwin (display-buffer outbuf))
  312.       (save-excursion
  313.     (set-buffer outbuf)
  314.     (compilation-mode)
  315.     (buffer-disable-undo (current-buffer))
  316.     ;; (setq buffer-read-only t)  ;;; Non-ergonomic.
  317.     (set (make-local-variable 'compilation-parse-errors-function) parser)
  318.     (set (make-local-variable 'compilation-error-message) error-message)
  319.     (set (make-local-variable 'compilation-error-regexp-alist) regexp-alist)
  320.     (setq default-directory thisdir
  321.           compilation-directory-stack (list default-directory))
  322.     (set-window-start outwin (point-min))
  323.     (setq mode-name name-of-mode)
  324.     (or (eq outwin (selected-window))
  325.         (set-window-point outwin (point-min)))
  326.     (and compilation-window-height
  327.          (= (window-width outwin) (frame-width))
  328.          (let ((w (selected-window)))
  329.            (unwind-protect
  330.            (progn
  331.              (select-window outwin)
  332.              (enlarge-window (- compilation-window-height
  333.                     (window-height))))
  334.          (select-window w))))
  335.     ;; Start the compilation.
  336.     (let ((proc (start-process-shell-command (downcase mode-name)
  337.                          outbuf
  338.                          command)))
  339.       (set-process-sentinel proc 'compilation-sentinel)
  340.       (set-process-filter proc 'compilation-filter)
  341.       (set-marker (process-mark proc) (point) outbuf)
  342.       (setq compilation-in-progress (cons proc compilation-in-progress)))))
  343.     ;; Make it so the next C-x ` will use this buffer.
  344.     (setq compilation-last-buffer outbuf)))
  345.  
  346. (defvar compilation-minor-mode-map
  347.   (let ((map (make-sparse-keymap)))
  348.     (define-key map "\C-c\C-c" 'compile-goto-error)
  349.     (define-key map "\C-c\C-k" 'kill-compilation)
  350.     (define-key map "\M-n" 'compilation-next-error)
  351.     (define-key map "\M-p" 'compilation-previous-error)
  352.     (define-key map "\M-{" 'compilation-previous-file)
  353.     (define-key map "\M-}" 'compilation-next-file)
  354.     map)
  355.   "Keymap for `compilation-minor-mode'.")
  356.  
  357. (defvar compilation-mode-map
  358.   (let ((map (cons 'keymap compilation-minor-mode-map)))
  359.     (define-key map " " 'scroll-up)
  360.     (define-key map "\^?" 'scroll-down)
  361.     map)
  362.   "Keymap for compilation log buffers.
  363. `compilation-minor-mode-map' is a cdr of this.")
  364.  
  365. (defun compilation-mode ()
  366.   "Major mode for compilation log buffers.
  367. \\<compilation-mode-map>To visit the source for a line-numbered error,
  368. move point to the error message line and type \\[compile-goto-error].
  369. To kill the compilation, type \\[kill-compilation].
  370.  
  371. Runs `compilation-mode-hook' with `run-hooks' (which see)."
  372.   (interactive)
  373.   (fundamental-mode)
  374.   (use-local-map compilation-mode-map)
  375.   (setq major-mode 'compilation-mode
  376.     mode-name "Compilation")
  377.   (compilation-setup)
  378.   (run-hooks 'compilation-mode-hook))
  379.  
  380. ;; Prepare the buffer for the compilation parsing commands to work.
  381. (defun compilation-setup ()
  382.   ;; Make the buffer's mode line show process state.
  383.   (setq mode-line-process '(": %s"))
  384.   (set (make-local-variable 'compilation-error-list) nil)
  385.   (set (make-local-variable 'compilation-old-error-list) nil)
  386.   (set (make-local-variable 'compilation-parsing-end) 1)
  387.   (set (make-local-variable 'compilation-directory-stack) nil)
  388.   (setq compilation-last-buffer (current-buffer)))
  389.  
  390. (defvar compilation-minor-mode nil
  391.   "Non-nil when in compilation-minor-mode.
  392. In this minor mode, all the error-parsing commands of the
  393. Compilation major mode are available.")
  394. (make-variable-buffer-local 'compilation-minor-mode)
  395.  
  396. (or (assq 'compilation-minor-mode minor-mode-alist)
  397.     (setq minor-mode-alist (cons '(compilation-minor-mode " Compilation")
  398.                  minor-mode-alist)))
  399. (or (assq 'compilation-minor-mode minor-mode-map-alist)
  400.     (setq minor-mode-map-alist (cons (cons 'compilation-minor-mode
  401.                        compilation-minor-mode-map)
  402.                      minor-mode-map-alist)))
  403.  
  404. ;;;###autoload
  405. (defun compilation-minor-mode (&optional arg)
  406.   "Toggle compilation minor mode.
  407. With arg, turn compilation mode on if and only if arg is positive.
  408. See `compilation-mode'."
  409.   (interactive "P")
  410.   (if (setq compilation-minor-mode (if (null arg)
  411.                        (null compilation-minor-mode)
  412.                      (> (prefix-numeric-value arg) 0)))
  413.       (compilation-setup)))
  414.  
  415. ;; Called when compilation process changes state.
  416. (defun compilation-sentinel (proc msg)
  417.   "Sentinel for compilation buffers."
  418.   (let ((buffer (process-buffer proc)))
  419.     (if (memq (process-status proc) '(signal exit))
  420.     (progn
  421.       (if (null (buffer-name buffer))
  422.           ;; buffer killed
  423.           (set-process-buffer proc nil)
  424.         (let ((obuf (current-buffer))
  425.           omax opoint)
  426.           ;; save-excursion isn't the right thing if
  427.           ;; process-buffer is current-buffer
  428.           (unwind-protect
  429.           (progn
  430.             ;; Write something in the compilation buffer
  431.             ;; and hack its mode line.
  432.             (set-buffer buffer)
  433.             (let ((buffer-read-only nil))
  434.               (setq omax (point-max)
  435.                 opoint (point))
  436.               (goto-char omax)
  437.               ;; Record where we put the message, so we can ignore it
  438.               ;; later on.
  439.               (insert ?\n mode-name " " msg)
  440.               (forward-char -1)
  441.               (insert " at " (substring (current-time-string) 0 19))
  442.               (forward-char 1)
  443.               (setq mode-line-process
  444.                 (concat ": "
  445.                     (symbol-name (process-status proc))))
  446.               ;; Since the buffer and mode line will show that the
  447.               ;; process is dead, we can delete it now.  Otherwise it
  448.               ;; will stay around until M-x list-processes.
  449.               (delete-process proc)
  450.               ;; Force mode line redisplay soon.
  451.               (set-buffer-modified-p (buffer-modified-p)))
  452.             (if (and opoint (< opoint omax))
  453.             (goto-char opoint))
  454.             (if compilation-finish-function
  455.             (funcall compilation-finish-function buffer msg)))
  456.         (set-buffer obuf))))
  457.       (setq compilation-in-progress (delq proc compilation-in-progress))
  458.       ))))
  459.  
  460. (defun compilation-filter (proc string)
  461.   "Process filter for compilation buffers.
  462. Just inserts the text, but uses `insert-before-markers'."
  463.   (save-excursion
  464.     (set-buffer (process-buffer proc))
  465.     (let ((buffer-read-only nil))
  466.       (save-excursion
  467.     (goto-char (process-mark proc))
  468.     (insert-before-markers string)
  469.     (set-marker (process-mark proc) (point))))))
  470.  
  471. ;; Return the cdr of compilation-old-error-list for the error containing point.
  472. (defun compile-error-at-point ()
  473.   (compile-reinitialize-errors nil (point))
  474.   (let ((errors compilation-old-error-list))
  475.     (while (and errors
  476.         (> (point) (car (car errors))))
  477.       (setq errors (cdr errors)))
  478.     errors))
  479.  
  480. (defun compilation-next-error (n)
  481.   "Move point to the next error in the compilation buffer.
  482. Does NOT find the source line like \\[next-error]."
  483.   (interactive "p")
  484.   (or (compilation-buffer-p (current-buffer))
  485.       (error "Not in a compilation buffer."))
  486.   (setq compilation-last-buffer (current-buffer))
  487.  
  488.   (let ((errors (compile-error-at-point)))
  489.  
  490.     ;; Move to the error after the one containing point.
  491.     (goto-char (car (if (< n 0)
  492.             (let ((i 0)
  493.                   (e compilation-old-error-list))
  494.               ;; See how many cdrs away ERRORS is from the start.
  495.               (while (not (eq e errors))
  496.                 (setq i (1+ i)
  497.                   e (cdr e)))
  498.               (if (> (- n) i)
  499.                   (error "Moved back past first error")
  500.                 (nth (+ i n) compilation-old-error-list)))
  501.               (let ((compilation-error-list (cdr errors)))
  502.             (compile-reinitialize-errors nil nil n)
  503.             (if compilation-error-list
  504.                 (nth (1- n) compilation-error-list)
  505.               (error "Moved past last error"))))))))
  506.  
  507. (defun compilation-previous-error (n)
  508.   "Move point to the previous error in the compilation buffer.
  509. Does NOT find the source line like \\[next-error]."
  510.   (interactive "p")
  511.   (compilation-next-error (- n)))
  512.  
  513.  
  514. ;; Given an elt of `compilation-error-list', return an object representing
  515. ;; the referenced file which is equal to (but not necessarily eq to) what
  516. ;; this function would return for another error in the same file.
  517. (defsubst compilation-error-filedata (data)
  518.   (setq data (cdr data))
  519.   (if (markerp data)
  520.       (marker-buffer data)
  521.     (car data)))
  522.  
  523. ;; Return a string describing a value from compilation-error-filedata.
  524. ;; This value is not necessarily useful as a file name, but should be
  525. ;; indicative to the user of what file's errors are being referred to.
  526. (defsubst compilation-error-filedata-file-name (filedata)
  527.   (if (bufferp filedata)
  528.       (buffer-file-name filedata)
  529.     (car filedata)))
  530.  
  531. (defun compilation-next-file (n)
  532.   "Move point to the next error for a different file than the current one."
  533.   (interactive "p")
  534.   (or (compilation-buffer-p (current-buffer))
  535.       (error "Not in a compilation buffer."))
  536.   (setq compilation-last-buffer (current-buffer))
  537.  
  538.   (let ((reversed (< n 0))
  539.     errors filedata)
  540.  
  541.     (if (not reversed)
  542.     (setq errors (or (compile-error-at-point)
  543.              (error "Moved past last error")))
  544.  
  545.       ;; Get a reversed list of the errors up through the one containing point.
  546.       (compile-reinitialize-errors nil (point))
  547.       (setq errors (reverse compilation-old-error-list)
  548.         n (- n))
  549.  
  550.       ;; Ignore errors after point.  (car ERRORS) will be the error
  551.       ;; containing point, (cadr ERRORS) the one before it.
  552.       (while (and errors
  553.           (< (point) (car (car errors))))
  554.     (setq errors (cdr errors))))
  555.  
  556.     (while (> n 0)
  557.       (setq filedata (compilation-error-filedata (car errors)))
  558.  
  559.       ;; Skip past the following errors for this file.
  560.       (while (equal filedata
  561.             (compilation-error-filedata
  562.              (car (or errors
  563.                   (if reversed
  564.                   (error "%s the first erring file"
  565.                      (compilation-error-filedata-file-name
  566.                       filedata))
  567.                 (let ((compilation-error-list nil))
  568.                   ;; Parse some more.
  569.                   (compile-reinitialize-errors nil nil 2)
  570.                   (setq errors compilation-error-list)))
  571.                   (error "%s is the last erring file" 
  572.                      (compilation-error-filedata-file-name
  573.                       filedata))))))
  574.     (setq errors (cdr errors)))
  575.  
  576.       (setq n (1- n)))
  577.  
  578.     ;; Move to the following error.
  579.     (goto-char (car (car (or errors
  580.                  (if reversed
  581.                  (error "This is the first erring file")
  582.                    (let ((compilation-error-list nil))
  583.                  ;; Parse the last one.
  584.                  (compile-reinitialize-errors nil nil 1)
  585.                  compilation-error-list))))))))
  586.  
  587. (defun compilation-previous-file (n)
  588.   "Move point to the previous error for a different file than the current one."
  589.   (interactive "p")
  590.   (compilation-next-file (- n)))
  591.  
  592.  
  593. (defun kill-compilation ()
  594.   "Kill the process made by the \\[compile] command."
  595.   (interactive)
  596.   (let ((buffer (compilation-find-buffer)))
  597.     (if (get-buffer-process buffer)
  598.     (interrupt-process (get-buffer-process buffer))
  599.       (error "The compilation process is not running."))))
  600.  
  601.  
  602. ;; Parse any new errors in the compilation buffer,
  603. ;; or reparse from the beginning if the user has asked for that.
  604. (defun compile-reinitialize-errors (argp &optional limit-search find-at-least)
  605.   (save-excursion
  606.     (set-buffer compilation-last-buffer)
  607.     ;; If we are out of errors, or if user says "reparse",
  608.     ;; discard the info we have, to force reparsing.
  609.     (if (or (eq compilation-error-list t)
  610.         (consp argp))
  611.     (progn (compilation-forget-errors)
  612.            (setq compilation-parsing-end 1)))
  613.     (if (and compilation-error-list
  614.          (or (not limit-search)
  615.          (> compilation-parsing-end limit-search))
  616.          (or (not find-at-least)
  617.          (>= (length compilation-error-list) find-at-least)))
  618.     ;; Since compilation-error-list is non-nil, it points to a specific
  619.     ;; error the user wanted.  So don't move it around.
  620.     nil
  621.       (switch-to-buffer compilation-last-buffer)
  622.       (set-buffer-modified-p nil)
  623.       (if (< compilation-parsing-end (point-max))
  624.       (let ((at-start (= compilation-parsing-end 1)))
  625.         (funcall compilation-parse-errors-function
  626.              limit-search find-at-least)
  627.         ;; Remember the entire list for compilation-forget-errors.
  628.         ;; If this is an incremental parse, append to previous list.
  629.         (if at-start
  630.         (setq compilation-old-error-list compilation-error-list)
  631.           (setq compilation-old-error-list
  632.             (nconc compilation-old-error-list compilation-error-list)))
  633.         )))))
  634.  
  635. (defun compile-goto-error (&optional argp)
  636.   "Visit the source for the error message point is on.
  637. Use this command in a compilation log buffer.
  638. \\[universal-argument] as a prefix arg means to reparse the buffer's error messages first;
  639. other kinds of prefix arguments are ignored."
  640.   (interactive "P")
  641.   (or (compilation-buffer-p (current-buffer))
  642.       (error "Not in a compilation buffer."))
  643.   (setq compilation-last-buffer (current-buffer))
  644.   (compile-reinitialize-errors argp (point))
  645.  
  646.   ;; Move to bol; the marker for the error on this line will point there.
  647.   (beginning-of-line)
  648.  
  649.   ;; Move compilation-error-list to the elt of compilation-old-error-list
  650.   ;; we want.
  651.   (setq compilation-error-list compilation-old-error-list)
  652.   (while (and compilation-error-list
  653.           (> (point) (car (car compilation-error-list))))
  654.     (setq compilation-error-list (cdr compilation-error-list)))
  655.  
  656.   ;; Move to another window, so that next-error's window changes
  657.   ;; result in the desired setup.
  658.   (or (one-window-p)
  659.       (progn
  660.     (other-window -1)
  661.     ;; other-window changed the selected buffer,
  662.     ;; but we didn't want to do that.
  663.     (set-buffer compilation-last-buffer)))
  664.  
  665.   (next-error 1))
  666.  
  667. (defsubst compilation-buffer-p (buffer)
  668.   (assq 'compilation-error-list (buffer-local-variables buffer)))
  669.  
  670. ;; Return a compilation buffer.
  671. ;; If the current buffer is a compilation buffer, return it.
  672. ;; If compilation-last-buffer is set to a live buffer, use that.
  673. ;; Otherwise, look for a compilation buffer and signal an error
  674. ;; if there are none.
  675. (defun compilation-find-buffer (&optional other-buffer)
  676.   (if (and (not other-buffer)
  677.        (compilation-buffer-p (current-buffer)))
  678.       ;; The current buffer is a compilation buffer.
  679.       (current-buffer)
  680.     (if (and compilation-last-buffer (buffer-name compilation-last-buffer)
  681.          (or (not other-buffer) (not (eq compilation-last-buffer
  682.                          (current-buffer)))))
  683.     compilation-last-buffer
  684.       (let ((buffers (buffer-list)))
  685.     (while (and buffers (or (not (compilation-buffer-p (car buffers)))
  686.                 (and other-buffer
  687.                      (eq (car buffers) (current-buffer)))))
  688.       (setq buffers (cdr buffers)))
  689.     (if buffers
  690.         (car buffers)
  691.       (or (and other-buffer
  692.            (compilation-buffer-p (current-buffer))
  693.            ;; The current buffer is a compilation buffer.
  694.            (progn
  695.              (if other-buffer
  696.              (message "This is the only compilation buffer."))
  697.              (current-buffer)))
  698.           (error "No compilation started!")))))))
  699.  
  700. ;;;###autoload
  701. (defun next-error (&optional argp)
  702.   "Visit next compilation error message and corresponding source code.
  703. This operates on the output from the \\[compile] command.
  704. If all preparsed error messages have been processed,
  705. the error message buffer is checked for new ones.
  706.  
  707. A prefix arg specifies how many error messages to move;
  708. negative means move back to previous error messages.
  709. Just C-u as a prefix means reparse the error message buffer
  710. and start at the first error.
  711.  
  712. \\[next-error] normally applies to the most recent compilation started,
  713. but as long as you are in the middle of parsing errors from one compilation
  714. output buffer, you stay with that compilation output buffer.
  715.  
  716. Use \\[next-error] in a compilation output buffer to switch to
  717. processing errors from that compilation.
  718.  
  719. See variables `compilation-parse-errors-function' and
  720. \`compilation-error-regexp-alist' for customization ideas."
  721.   (interactive "P")
  722.   (setq compilation-last-buffer (compilation-find-buffer))
  723.   (compile-reinitialize-errors argp nil
  724.                    ;; We want to pass a number here only if
  725.                    ;; we got a numeric prefix arg, not just C-u.
  726.                    (and (not (consp argp))
  727.                     (if (< (prefix-numeric-value argp) 1)
  728.                     0
  729.                       (1- (prefix-numeric-value argp)))))
  730.   ;; Make ARGP nil if the prefix arg was just C-u,
  731.   ;; since that means to reparse the errors, which the
  732.   ;; compile-reinitialize-errors call just did.
  733.   ;; Now we are only interested in a numeric prefix arg.
  734.   (if (consp argp)
  735.       (setq argp nil))
  736.   (let (next-errors next-error)
  737.     (save-excursion
  738.       (set-buffer compilation-last-buffer)
  739.       ;; compilation-error-list points to the "current" error.
  740.       (setq next-errors 
  741.         (if (> (prefix-numeric-value argp) 0)
  742.         (nthcdr (1- (prefix-numeric-value argp))
  743.             compilation-error-list)
  744.           ;; Zero or negative arg; we need to move back in the list.
  745.           (let ((n (1- (prefix-numeric-value argp)))
  746.             (i 0)
  747.             (e compilation-old-error-list))
  748.         ;; See how many cdrs away the current error is from the start.
  749.         (while (not (eq e compilation-error-list))
  750.           (setq i (1+ i)
  751.             e (cdr e)))
  752.         (if (> (- n) i)
  753.             (error "Moved back past first error")
  754.           (nthcdr (+ i n) compilation-old-error-list))))
  755.         next-error (car next-errors))
  756.       (while
  757.       (progn
  758.         (if (null next-error)
  759.         (progn
  760.           (if argp (if (> (prefix-numeric-value argp) 0)
  761.                    (error "Moved past last error")
  762.                  (error "Moved back past first error")))
  763.           (compilation-forget-errors)
  764.           (error (concat compilation-error-message
  765.                  (and (get-buffer-process (current-buffer))
  766.                       (eq (process-status
  767.                        (get-buffer-process
  768.                         (current-buffer)))
  769.                       'run)
  770.                       " yet"))))
  771.           (setq compilation-error-list (cdr next-errors))
  772.           (if (null (cdr next-error))
  773.           ;; This error is boring.  Go to the next.
  774.           t
  775.         (or (markerp (cdr next-error))
  776.             ;; This error has a filename/lineno pair.
  777.             ;; Find the file and turn it into a marker.
  778.             (let* ((fileinfo (car (cdr next-error)))
  779.                (buffer (compilation-find-file (cdr fileinfo)
  780.                               (car fileinfo)
  781.                               (car next-error))))
  782.               (if (null buffer)
  783.               ;; We can't find this error's file.
  784.               ;; Remove all errors in the same file.
  785.               (progn
  786.                 (setq next-errors compilation-old-error-list)
  787.                 (while next-errors
  788.                   (and (consp (cdr (car next-errors)))
  789.                    (equal (car (cdr (car next-errors)))
  790.                       fileinfo)
  791.                    (progn
  792.                      (set-marker (car (car next-errors)) nil)
  793.                      (setcdr (car next-errors) nil)))
  794.                   (setq next-errors (cdr next-errors)))
  795.                 ;; Look for the next error.
  796.                 t)
  797.             ;; We found the file.  Get a marker for this error.
  798.             ;; compilation-old-error-list is a buffer-local
  799.             ;; variable, so we must be careful to extract its value
  800.             ;; before switching to the source file buffer.
  801.             (let ((errors compilation-old-error-list)
  802.                   (last-line (cdr (cdr next-error))))
  803.               (set-buffer buffer)
  804.               (save-excursion
  805.                 (save-restriction
  806.                   (widen)
  807.                   (goto-line last-line)
  808.                   (beginning-of-line)
  809.                   (setcdr next-error (point-marker))
  810.                   ;; Make all the other error messages referring
  811.                   ;; to the same file have markers into the buffer.
  812.                   (while errors
  813.                 (and (consp (cdr (car errors)))
  814.                      (equal (car (cdr (car errors))) fileinfo)
  815.                      (let ((this (cdr (cdr (car errors))))
  816.                        (lines (- (cdr (cdr (car errors)))
  817.                              last-line)))
  818.                        (if (eq selective-display t)
  819.                        (if (< lines 0)
  820.                            (re-search-backward "[\n\C-m]"
  821.                                    nil 'end
  822.                                    (- lines))
  823.                          (re-search-forward "[\n\C-m]"
  824.                                 nil 'end
  825.                                 lines))
  826.                      (forward-line lines))
  827.                        (setq last-line this)
  828.                        (setcdr (car errors) (point-marker))))
  829.                 (setq errors (cdr errors)))))))))
  830.         ;; If we didn't get a marker for this error,
  831.         ;; go on to the next one.
  832.         (not (markerp (cdr next-error))))))
  833.     (setq next-errors compilation-error-list
  834.           next-error (car next-errors))))
  835.  
  836.     ;; Skip over multiple error messages for the same source location,
  837.     ;; so the next C-x ` won't go to an error in the same place.
  838.     (while (and compilation-error-list
  839.         (equal (cdr (car compilation-error-list)) (cdr next-error)))
  840.       (setq compilation-error-list (cdr compilation-error-list)))
  841.  
  842.     ;; We now have a marker for the position of the error.
  843.     (switch-to-buffer (marker-buffer (cdr next-error)))
  844.     (goto-char (cdr next-error))
  845.     ;; If narrowing got in the way of
  846.     ;; going to the right place, widen.
  847.     (or (= (point) (marker-position (cdr next-error)))
  848.     (progn
  849.       (widen)
  850.       (goto-char (cdr next-error))))
  851.  
  852.     ;; Show compilation buffer in other window, scrolled to this error.
  853.     (let* ((pop-up-windows t)
  854.        (w (display-buffer (marker-buffer (car next-error)))))
  855.       (set-window-point w (car next-error))
  856.       (set-window-start w (car next-error)))))
  857.  
  858. ;;;###autoload
  859. (define-key ctl-x-map "`" 'next-error)
  860.  
  861. ;; Find a buffer for file FILENAME.
  862. ;; Search the directories in compilation-search-path.
  863. ;; A nil in compilation-search-path means to try the
  864. ;; current directory, which is passed in DIR.
  865. ;; If FILENAME is not found at all, ask the user where to find it.
  866. ;; Pop up the buffer containing MARKER and scroll to MARKER if we ask the user.
  867. (defun compilation-find-file (filename dir marker)
  868.   (let ((dirs compilation-search-path)
  869.     result name)
  870.     (while (and dirs (null result))
  871.       (setq name (expand-file-name filename (or (car dirs) dir))
  872.         result (and (file-exists-p name)
  873.             (find-file-noselect name))
  874.         dirs (cdr dirs)))
  875.     (or result
  876.     ;; The file doesn't exist.
  877.     ;; Ask the user where to find it.
  878.     ;; If he hits C-g, then the next time he does
  879.     ;; next-error, he'll skip past it.
  880.     (progn
  881.       (let* ((pop-up-windows t)
  882.          (w (display-buffer (marker-buffer marker))))
  883.         (set-window-point w marker)
  884.         (set-window-start w marker))
  885.       (setq name
  886.         (expand-file-name
  887.          (read-file-name
  888.           (format "Find this error in: (default %s) "
  889.               filename) dir filename t)))
  890.       (if (file-directory-p name)
  891.           (setq name (concat (file-name-as-directory name) filename)))
  892.       (if (file-exists-p name)
  893.           (find-file-noselect name))))))
  894.  
  895. ;; Set compilation-error-list to nil, and unchain the markers that point to the
  896. ;; error messages and their text, so that they no longer slow down gap motion.
  897. ;; This would happen anyway at the next garbage collection, but it is better to
  898. ;; do it right away.
  899. (defun compilation-forget-errors ()
  900.   (while compilation-old-error-list
  901.     (let ((next-error (car compilation-old-error-list)))
  902.       (set-marker (car next-error) nil)
  903.       (if (markerp (cdr next-error))
  904.       (set-marker (cdr next-error) nil)))
  905.     (setq compilation-old-error-list (cdr compilation-old-error-list)))
  906.   (setq compilation-error-list nil
  907.     compilation-directory-stack nil))
  908.  
  909.  
  910. (defun count-regexp-groupings (regexp)
  911.   "Return the number of \\( ... \\) groupings in REGEXP (a string)."
  912.   (let ((groupings 0)
  913.     (len (length regexp))
  914.     (i 0)
  915.     c)
  916.     (while (< i len)
  917.       (setq c (aref regexp i)
  918.         i (1+ i))
  919.       (cond ((= c ?\[)
  920.          ;; Find the end of this [...].
  921.          (while (and (< i len)
  922.              (not (= (aref regexp i) ?\])))
  923.            (setq i (1+ i))))
  924.         ((= c ?\\)
  925.          (if (< i len)
  926.          (progn
  927.            (setq c (aref regexp i)
  928.              i (1+ i))
  929.            (if (= c ?\))
  930.                ;; We found the end of a grouping,
  931.                ;; so bump our counter.
  932.                (setq groupings (1+ groupings))))))))
  933.     groupings))
  934.  
  935. (defun compilation-parse-errors (limit-search find-at-least)
  936.   "Parse the current buffer as grep, cc or lint error messages.
  937. See variable `compilation-parse-errors-function' for the interface it uses."
  938.   (setq compilation-error-list nil)
  939.   (message "Parsing error messages...")
  940.   (let (text-buffer orig orig-expanded parent-expanded
  941.     regexp enter-group leave-group error-group
  942.     alist subexpr error-regexp-groups
  943.     (found-desired nil)
  944.     (compilation-num-errors-found 0))
  945.  
  946.     ;; Don't reparse messages already seen at last parse.
  947.     (goto-char compilation-parsing-end)
  948.     ;; Don't parse the first two lines as error messages.
  949.     ;; This matters for grep.
  950.     (if (bobp)
  951.     (progn
  952.       (forward-line 2)
  953.       ;; Move back so point is before the newline.
  954.       ;; This matters because some error regexps use \n instead of ^
  955.       ;; to be faster.
  956.       (forward-char -1)))
  957.  
  958.     ;; Compile all the regexps we want to search for into one.
  959.     (setq regexp (concat "\\(" compilation-enter-directory-regexp "\\)\\|"
  960.              "\\(" compilation-leave-directory-regexp "\\)\\|"
  961.              "\\(" (mapconcat (function
  962.                        (lambda (elt)
  963.                          (concat "\\(" (car elt) "\\)")))
  964.                       compilation-error-regexp-alist
  965.                       "\\|") "\\)"))
  966.  
  967.     ;; Find out how many \(...\) groupings are in each of the regexps, and set
  968.     ;; *-GROUP to the grouping containing each constituent regexp (whose
  969.     ;; subgroups will come immediately thereafter) of the big regexp we have
  970.     ;; just constructed.
  971.     (setq enter-group 1
  972.       leave-group (+ enter-group
  973.              (count-regexp-groupings
  974.               compilation-enter-directory-regexp)
  975.              1)
  976.       error-group (+ leave-group
  977.              (count-regexp-groupings
  978.               compilation-leave-directory-regexp)
  979.              1))
  980.  
  981.     ;; Compile an alist (IDX FILE LINE), where IDX is the number of the
  982.     ;; subexpression for an entire error-regexp, and FILE and LINE are the
  983.     ;; numbers for the subexpressions giving the file name and line number.
  984.     (setq alist (or compilation-error-regexp-alist
  985.             (error "compilation-error-regexp-alist is empty!"))
  986.       subexpr (1+ error-group))
  987.     (while alist
  988.       (setq error-regexp-groups (cons (list subexpr
  989.                         (+ subexpr (nth 1 (car alist)))
  990.                         (+ subexpr (nth 2 (car alist))))
  991.                       error-regexp-groups))
  992.       (setq subexpr (+ subexpr 1 (count-regexp-groupings (car (car alist)))))
  993.       (setq alist (cdr alist)))
  994.  
  995.     (setq orig default-directory)
  996.     (setq orig-expanded (file-truename orig))
  997.     (setq parent-expanded (expand-file-name "../" orig-expanded))
  998.  
  999.     (while (and (not found-desired)
  1000.         ;; We don't just pass LIMIT-SEARCH to re-search-forward
  1001.         ;; because we want to find matches containing LIMIT-SEARCH
  1002.         ;; but which extend past it.
  1003.         (re-search-forward regexp nil t))
  1004.  
  1005.       ;; Figure out which constituent regexp matched.
  1006.       (cond ((match-beginning enter-group)
  1007.          ;; The match was the enter-directory regexp.
  1008.          (let ((dir
  1009.             (file-name-as-directory
  1010.              (expand-file-name
  1011.               (buffer-substring (match-beginning (+ enter-group 1))
  1012.                     (match-end (+ enter-group 1)))))))
  1013.            ;; The directory name in the "entering" message
  1014.            ;; is a truename.  Try to convert it to a form
  1015.            ;; like what the user typed in.
  1016.            (setq dir
  1017.              (compile-abbreviate-directory dir orig orig-expanded
  1018.                            parent-expanded))
  1019.            (setq compilation-directory-stack
  1020.              (cons dir compilation-directory-stack))
  1021.            (and (file-directory-p dir)
  1022.             (setq default-directory dir))))
  1023.         
  1024.         ((match-beginning leave-group)
  1025.          ;; The match was the leave-directory regexp.
  1026.          (let ((beg (match-beginning (+ leave-group 1)))
  1027.            (stack compilation-directory-stack))
  1028.            (if beg
  1029.            (let ((dir
  1030.               (file-name-as-directory
  1031.                (expand-file-name
  1032.                 (buffer-substring beg
  1033.                           (match-end (+ leave-group
  1034.                                 1)))))))
  1035.              ;; The directory name in the "entering" message
  1036.              ;; is a truename.  Try to convert it to a form
  1037.              ;; like what the user typed in.
  1038.              (setq dir
  1039.                (compile-abbreviate-directory dir orig orig-expanded
  1040.                              parent-expanded))
  1041.              (while (and stack
  1042.                  (not (string-equal (car stack) dir)))
  1043.                (setq stack (cdr stack)))))
  1044.            (setq compilation-directory-stack (cdr stack))
  1045.            (setq stack (car compilation-directory-stack))
  1046.            (if stack
  1047.            (setq default-directory stack))
  1048.            ))
  1049.         
  1050.         ((match-beginning error-group)
  1051.          ;; The match was the composite error regexp.
  1052.          ;; Find out which individual regexp matched.
  1053.          (setq alist error-regexp-groups)
  1054.          (while (and alist
  1055.              (null (match-beginning (car (car alist)))))
  1056.            (setq alist (cdr alist)))
  1057.          (if alist
  1058.          (setq alist (car alist))
  1059.            (error "compilation-parse-errors: impossible regexp match!"))
  1060.          
  1061.          ;; Extract the file name and line number from the error message.
  1062.          (let ((beginning-of-match (match-beginning 0)) ;looking-at nukes
  1063.            (filename
  1064.             (cons default-directory
  1065.               (buffer-substring (match-beginning (nth 1 alist))
  1066.                         (match-end (nth 1 alist)))))
  1067.            (linenum (save-restriction
  1068.                   (narrow-to-region
  1069.                    (match-beginning (nth 2 alist))
  1070.                    (match-end (nth 2 alist)))
  1071.                   (goto-char (point-min))
  1072.                   (if (looking-at "[0-9]")
  1073.                   (read (current-buffer))))))
  1074.            ;; Locate the erring file and line.
  1075.            ;; Cons a new elt onto compilation-error-list,
  1076.            ;; giving a marker for the current compilation buffer
  1077.            ;; location, and the file and line number of the error.
  1078.            (save-excursion
  1079.          (beginning-of-line 1)
  1080.          (let ((this (cons (point-marker)
  1081.                    (cons filename linenum))))
  1082.            ;; Don't add the same source line more than once.
  1083.            (if (equal (cdr this) (cdr (car compilation-error-list)))
  1084.                nil
  1085.              (setq compilation-error-list
  1086.                (cons this
  1087.                  compilation-error-list))
  1088.              (setq compilation-num-errors-found
  1089.                (1+ compilation-num-errors-found)))))
  1090.            (and find-at-least (>= compilation-num-errors-found
  1091.                       find-at-least)
  1092.             ;; We have found as many new errors as the user wants.
  1093.             ;; We continue to parse until we have seen all
  1094.             ;; the consecutive errors in the same file,
  1095.             ;; so the error positions will be recorded as markers
  1096.             ;; in this buffer that might change.
  1097.             (cdr compilation-error-list) ; Must check at least two.
  1098.             (not (equal (car (cdr (nth 0 compilation-error-list)))
  1099.                 (car (cdr (nth 1 compilation-error-list)))))
  1100.             (progn
  1101.               ;; Discard the error just parsed, so that the next
  1102.               ;; parsing run can get it and the following errors in
  1103.               ;; the same file all at once.  If we didn't do this, we
  1104.               ;; would have the same problem we are trying to avoid
  1105.               ;; with the test above, just delayed until the next run!
  1106.               (setq compilation-error-list
  1107.                 (cdr compilation-error-list))
  1108.               (goto-char beginning-of-match)
  1109.               (setq found-desired t)))
  1110.            )
  1111.          )
  1112.         (t
  1113.          (error "compilation-parse-errors: known groups didn't match!")))
  1114.  
  1115.       (message "Parsing error messages...%d (%d%% of buffer)"
  1116.            compilation-num-errors-found
  1117.            (/ (* 100 (point)) (point-max)))
  1118.  
  1119.       (and limit-search (>= (point) limit-search)
  1120.        ;; The user wanted a specific error, and we're past it.
  1121.        (setq found-desired t)))
  1122.     (setq compilation-parsing-end (if found-desired
  1123.                       (point)
  1124.                     ;; We have searched the whole buffer.
  1125.                     (point-max))))
  1126.   (setq compilation-error-list (nreverse compilation-error-list))
  1127.   (message "Parsing error messages...done"))
  1128.  
  1129. ;; If directory DIR is a subdir of ORIG or of ORIG's parent,
  1130. ;; return a relative name for it starting from ORIG or its parent.
  1131. ;; ORIG-EXPANDED is an expanded version of ORIG.
  1132. ;; PARENT-EXPANDED is an expanded version of ORIG's parent.
  1133. ;; Those two args could be computed here, but we run faster by
  1134. ;; having the caller compute them just once.
  1135. (defun compile-abbreviate-directory (dir orig orig-expanded parent-expanded)
  1136.   (if (and (> (length dir) (length orig-expanded))
  1137.        (string= orig-expanded
  1138.             (substring dir 0 (length orig-expanded))))
  1139.       (setq dir
  1140.         (concat orig
  1141.             (substring dir (length orig-expanded)))))
  1142.   (if (and (> (length dir) (length parent-expanded))
  1143.        (string= parent-expanded
  1144.             (substring dir 0 (length parent-expanded))))
  1145.     (setq dir
  1146.       (concat (file-name-directory
  1147.            (directory-file-name orig))
  1148.           (substring dir (length parent-expanded)))))
  1149.   dir)
  1150.  
  1151. (provide 'compile)
  1152.  
  1153. ;;; compile.el ends here
  1154.